home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Frameworks / Grant's CGI Framework 1.0b14 / Util / Quit.h < prev    next >
C/C++ Source or Header  |  1996-04-12  |  732b  |  39 lines

  1. #pragma once
  2. /*****
  3.  *
  4.  *    Quit.h
  5.  *
  6.  *    This is a support file for "Grant's CGI Framework".
  7.  *    Please see the license agreement that accompanies the distribution package
  8.  *    for licensing details.
  9.  *
  10.  *    Copyright ©1995,1996 by Grant Neufeld
  11.  *    grant@acm.com
  12.  *    http://arpp.carleton.ca/grant/
  13.  *
  14.  *****/
  15.  
  16. /***  FUNCTION PROTOTYPES  ***/
  17.  
  18.         void        doQuitApp        ( void );
  19.         Boolean        QuitPrepare        ( Boolean );
  20. p_export void        ForceQuit        ( void );
  21.     
  22. #if kCompileWithQuitOnLongIdle
  23.     p_export void    ResetQuitIdleTimer    ( void );
  24. #else
  25.     #define ResetQuitIdleTimer()    
  26. #endif
  27.  
  28.  
  29. /***  EXTERNAL USER DEFINED FUNCTIONS  ***/
  30.  
  31. p_export Boolean    CustomQuit    ( Boolean );
  32.  
  33. #if !(kCompileWithout_MY_Names)
  34. #define MyQuit    CustomQuit
  35. #endif
  36.  
  37.  
  38. /***** EOF *****/
  39.